encoding/binary.bigEndian.Uint64 (method, view implemented interface methods)
13 uses
encoding/binary (current package)
binary.go#L178: func (bigEndian) Uint64(b []byte) uint64 {
crypto/cipher
gcm.go#L140: binary.BigEndian.Uint64(key[:8]),
gcm.go#L141: binary.BigEndian.Uint64(key[8:]),
gcm.go#L326: y.low ^= binary.BigEndian.Uint64(blocks)
gcm.go#L327: y.high ^= binary.BigEndian.Uint64(blocks[8:])
crypto/des
block.go#L13: b := binary.BigEndian.Uint64(src)
block.go#L231: key := binary.BigEndian.Uint64(keyBytes)
cipher.go#L98: b := binary.BigEndian.Uint64(src)
cipher.go#L133: b := binary.BigEndian.Uint64(src)
crypto/internal/bigmod
nat.go#L185: return uint(binary.BigEndian.Uint64(buf))
crypto/md5
md5.go#L91: return b[8:], binary.BigEndian.Uint64(b[0:8])
math/big
nat.go#L1337: return Word(binary.BigEndian.Uint64(buf))
nhooyr.io/websocket
frame.go#L84: h.payloadLength = int64(binary.BigEndian.Uint64(readBuf))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |